home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / XDME / Macros / C / h_f2.xdme < prev    next >
Encoding:
Text File  |  1996-09-27  |  520 b   |  27 lines

  1. #
  2. #   Second part of Insert-Function-Header
  3. #
  4. #   $VER: insertfh2 V1.00 (18.11.1992)
  5. #
  6.  
  7. # get the name, the user entered
  8. firstnb scanf w
  9.  
  10. # find function-body and add the name at the top in a default protoype
  11. find { insline `$scanf ()'
  12.  
  13. # look for comment at the end
  14. find /* 3 right
  15.  
  16. # and insert the function-name there, too
  17. `$scanf'
  18.  
  19. # insert std. history-entry
  20. findstr HISTORY prev
  21. down insline
  22. tab ($DATE) tab ($USER) tab (created)
  23.  
  24. # find parameters and position cursor there
  25. findstr SYNOPSIS prev
  26. down insline tab
  27.